home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000965_aubourg@physics.Berkeley.EDU_Tue Sep 20 08:46:38 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  1KB

  1. Received: from physics.Berkeley.EDU by cs.umb.edu with SMTP id AA15801
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Tue, 20 Sep 1994 18:46:44 -0400
  3. Received: from physics7.Berkeley.EDU by physics.Berkeley.EDU (4.1/1.31)
  4.     id AA21956; Tue, 20 Sep 94 15:46:38 PDT
  5. Date: Tue, 20 Sep 94 15:46:38 PDT
  6. From: aubourg@physics.Berkeley.EDU (Eric Aubourg)
  7. Message-Id: <9409202246.AA21956@physics.Berkeley.EDU>
  8. To: tex-k@cs.umb.edu
  9. Subject: bug in dvipsk-5.58a
  10.  
  11. in tex-file.h
  12.  
  13. you have
  14. typedef enum
  15. {
  16.   kpse_gf_format,
  17.   kpse_pk_format,
  18.   kpse_any_glyph_format,        /* ``any'' meaning anything above */
  19.   kpse_bib_format,
  20.   kpse_bst_format,
  21.   kpse_cnf_format,
  22.   kpse_mf_format,
  23.   kpse_pict_format,
  24.   kpse_tex_format,              /* also for eps files */
  25.   kpse_tfm_format,
  26.   kpse_vf_format,
  27.   kpse_dvips_config_format,
  28.   kpse_dvips_header_format,
  29.   kpse_last_format = kpse_dvips_header_format
  30. } kpse_file_format_type;
  31.  
  32. and in tex-file.c
  33.  
  34. you have
  35. kpse_format_info_type kpse_format_info[kpse_last_format];
  36.  
  37. The last element is missing, resulting in
  38. cannot find texc.pro.
  39.  
  40. I added a +1 in the allocation, but you could also
  41. remove the = kpse_dvips_header_format in the typedef,
  42.  
  43.  
  44. Eric Aubourg